home *** CD-ROM | disk | FTP | other *** search
- unit TDM60_TLB;
-
- // ************************************************************************ //
- // WARNING
- // -------
- // The types declared in this file were generated from data read from a
- // Type Library. If this type library is explicitly or indirectly (via
- // another type library referring to this type library) re-imported, or the
- // 'Refresh' command of the Type Library Editor activated while editing the
- // Type Library, the contents of this file will be regenerated and all
- // manual modifications will be lost.
- // ************************************************************************ //
-
- // PASTLWTR : $Revision: 1.88.1.0.1.0 $
- // File generated on 2000/07/03 12:19:05 from Type Library described below.
-
- // ************************************************************************ //
- // Type Lib: D:\usr\bob\magazine\DELPHI.MAG\#60\src\TDM60.tlb (1)
- // IID\LCID: {F9FCB6C1-50C5-11D4-BFD3-00104BF89DAD}\0
- // Helpfile:
- // DepndLst:
- // (1) v2.0 stdole, (C:\WINNT\System32\STDOLE2.TLB)
- // (2) v4.0 StdVCL, (C:\WINNT\System32\STDVCL40.DLL)
- // (3) v1.0 Midas, (C:\WINNT\System32\midas.dll)
- // ************************************************************************ //
- {$TYPEDADDRESS OFF} // Unit must be compiled without type-checked pointers.
- interface
-
- uses Windows, ActiveX, Classes, Graphics, OleServer, OleCtrls, StdVCL,
- MIDAS;
-
- // *********************************************************************//
- // GUIDS declared in the TypeLibrary. Following prefixes are used:
- // Type Libraries : LIBID_xxxx
- // CoClasses : CLASS_xxxx
- // DISPInterfaces : DIID_xxxx
- // Non-DISP interfaces: IID_xxxx
- // *********************************************************************//
- const
- // TypeLibrary Major and minor versions
- TDM60MajorVersion = 1;
- TDM60MinorVersion = 0;
-
- LIBID_TDM60: TGUID = '{F9FCB6C1-50C5-11D4-BFD3-00104BF89DAD}';
-
- IID_IPoolingMidasServer: TGUID = '{F9FCB6C2-50C5-11D4-BFD3-00104BF89DAD}';
- CLASS_PoolingMidasServer: TGUID = '{F9FCB6C4-50C5-11D4-BFD3-00104BF89DAD}';
- type
-
- // *********************************************************************//
- // Forward declaration of types defined in TypeLibrary
- // *********************************************************************//
- IPoolingMidasServer = interface;
- IPoolingMidasServerDisp = dispinterface;
-
- // *********************************************************************//
- // Declaration of CoClasses defined in Type Library
- // (NOTE: Here we map each CoClass to its Default Interface)
- // *********************************************************************//
- PoolingMidasServer = IPoolingMidasServer;
-
-
- // *********************************************************************//
- // Interface: IPoolingMidasServer
- // Flags: (4416) Dual OleAutomation Dispatchable
- // GUID: {F9FCB6C2-50C5-11D4-BFD3-00104BF89DAD}
- // *********************************************************************//
- IPoolingMidasServer = interface(IAppServer)
- ['{F9FCB6C2-50C5-11D4-BFD3-00104BF89DAD}']
- end;
-
- // *********************************************************************//
- // DispIntf: IPoolingMidasServerDisp
- // Flags: (4416) Dual OleAutomation Dispatchable
- // GUID: {F9FCB6C2-50C5-11D4-BFD3-00104BF89DAD}
- // *********************************************************************//
- IPoolingMidasServerDisp = dispinterface
- ['{F9FCB6C2-50C5-11D4-BFD3-00104BF89DAD}']
- function AS_ApplyUpdates(const ProviderName: WideString; Delta: OleVariant;
- MaxErrors: Integer; out ErrorCount: Integer; var OwnerData: OleVariant): OleVariant; dispid 20000000;
- function AS_GetRecords(const ProviderName: WideString; Count: Integer; out RecsOut: Integer;
- Options: Integer; const CommandText: WideString;
- var Params: OleVariant; var OwnerData: OleVariant): OleVariant; dispid 20000001;
- function AS_DataRequest(const ProviderName: WideString; Data: OleVariant): OleVariant; dispid 20000002;
- function AS_GetProviderNames: OleVariant; dispid 20000003;
- function AS_GetParams(const ProviderName: WideString; var OwnerData: OleVariant): OleVariant; dispid 20000004;
- function AS_RowRequest(const ProviderName: WideString; Row: OleVariant; RequestType: Integer;
- var OwnerData: OleVariant): OleVariant; dispid 20000005;
- procedure AS_Execute(const ProviderName: WideString; const CommandText: WideString;
- var Params: OleVariant; var OwnerData: OleVariant); dispid 20000006;
- end;
-
- // *********************************************************************//
- // The Class CoPoolingMidasServer provides a Create and CreateRemote method to
- // create instances of the default interface IPoolingMidasServer exposed by
- // the CoClass PoolingMidasServer. The functions are intended to be used by
- // clients wishing to automate the CoClass objects exposed by the
- // server of this typelibrary.
- // *********************************************************************//
- CoPoolingMidasServer = class
- class function Create: IPoolingMidasServer;
- class function CreateRemote(const MachineName: string): IPoolingMidasServer;
- end;
-
- implementation
-
- uses ComObj;
-
- class function CoPoolingMidasServer.Create: IPoolingMidasServer;
- begin
- Result := CreateComObject(CLASS_PoolingMidasServer) as IPoolingMidasServer;
- end;
-
- class function CoPoolingMidasServer.CreateRemote(const MachineName: string): IPoolingMidasServer;
- begin
- Result := CreateRemoteComObject(MachineName, CLASS_PoolingMidasServer) as IPoolingMidasServer;
- end;
-
- end.
-